home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / program / gtld3656.lha / GadUtil / Docs / AutoDocs / 15.GU_GetLocaleStr < prev    next >
Text File  |  1995-06-18  |  906b  |  31 lines

  1. gadutil.library/GU_GetLocaleStr               gadutil.library/GU_GetLocaleStr
  2.  
  3.    NAME
  4.     GU_GetLocaleStr -- Get a localized string from a catalog.
  5.  
  6.    SYNOPSIS
  7.     string = GU_GetLocaleStr(stringID, catalog, defstrings)
  8.     D0,A0                    D0        A0       A1
  9.  
  10.     STRPTR GU_GetLocaleStr(ULONG, struct Catalog *, struct AppString *);
  11.  
  12.    FUNCTION
  13.     Get a localized string, or the default string, from a catalog or from
  14.     the programs built-in strings.
  15.  
  16.    INPUTS
  17.     stringID - the ID of the string to get
  18.  
  19.     catalog - the opened catalog for the program
  20.  
  21.     defstrings - an array of AppString structures, the programs built-in
  22.              strings and ID's.
  23.  
  24.    RESULT
  25.     string - the address of the localized string, or if the catalog was not
  26.          available (or if the selected language was the programs built-
  27.          ins), a pointer to the default string with the given ID.
  28.  
  29.    SEE ALSO
  30.     GU_OpenCatalog(), GU_CloseCatalog()
  31.